home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 January
/
PCWorld_2007-01_cd.bin
/
v cisle
/
autoit
/
autoit-v3.2.0.1-setup.exe
/
Examples
/
Helpfile
/
_StringInsert.au3
< prev
next >
Wrap
Text File
|
2006-06-17
|
214b
|
5 lines
#include<string.au3>
; Inserts three "moving" underscores and prints them to the console
For $i_loop = -20 To 20
ConsoleWrite($i_loop & @TAB & _StringInsert ("Supercalifragilistic", "___", $i_loop) & @CR)
Next